To be able to edit code and run cells, you need to run the notebook yourself. Where would you like to run the notebook?

This notebook takes about 30 seconds to run.

In the cloud (experimental)

Binder is a free, open source service that runs scientific notebooks in the cloud! It will take a while, usually 2-7 minutes to get a session.

On your computer

(Recommended if you want to store your changes.)

  1. Copy the notebook URL:
  2. Run Pluto

    (Also see: How to install Julia and Pluto)

  3. Paste URL in the Open box

Frontmatter

If you are publishing this notebook on the web, you can set the parameters below to provide HTML metadata. This is useful for search engines and social media.

Author 1

Outdated

This is now an official feature of PlutoUI!

https://github.com/JuliaPluto/PlutoUI.jl/pull/164

https://github.com/JuliaPluto/PlutoUI.jl/pull/163

👀 Reading hidden code
md"""
# Outdated

This is now an official feature of PlutoUI!

https://github.com/JuliaPluto/PlutoUI.jl/pull/164

https://github.com/JuliaPluto/PlutoUI.jl/pull/163
"""
304 μs
missing
👀 Reading hidden code
# sleep(1);
10.1 μs

A slider:

and a checkbox:

👀 Reading hidden code
@bind xoxo confirm_combine(md"""
A slider: $(Slider(1:10))
and a checkbox: $(CheckBox())

""")
618 ms
👀 Reading hidden code
using PlutoUI
131 ms
confirm_combine (generic function with 2 methods)
function confirm_combine(node, label="Submit")
id = String(rand('a':'z', 10))
"""
<div>
<span>
$(repr(MIME"text/html"(), node))
</span>
<input type="submit" value="$(Markdown.htmlesc(label))">
<script>
const div = currentScript.parentElement
const inputs = div.querySelectorAll("span input")
const values = Array(inputs.length)
inputs.forEach(async (el,i) => {
el.oninput = (e) => {
e.stopPropagation()
}
const gen = Generators.input(el)
while(true) {
values[i] = await gen.next().value
div.value = values
}
})
const submit = div.querySelector("input[type=submit]")
submit.onclick = () => {
div.dispatchEvent(new CustomEvent("input", {}))
}
</script>
</div>
""" |> HTML
end
👀 Reading hidden code
3.6 ms